home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-04d.zip / 04d / Hity z okladki / Plus Firma / AccessRT / Office1.cab / MSIOFF10.MOF_0001 < prev    next >
Text File  |  2003-10-09  |  74KB  |  1,808 lines

  1. //**************************************************************************
  2. //* File: MSIOff10.mof - Office Extension MOF File for MSInfo >= 5.0
  3. //**************************************************************************
  4. #pragma autorecover
  5.  
  6. //*************************************************************
  7. //***    Creates namespace for MSAPPS
  8. //*************************************************************
  9. #pragma namespace ("\\\\.\\Root")
  10.  
  11. instance of __Namespace
  12. {
  13.     Name = "MSAPPS10";
  14.     //should this remain MSAPPS?
  15. };
  16.  
  17. //*************************************************************
  18. //***    Changes focus to new namespace    
  19. //*************************************************************
  20.  
  21. #pragma namespace ("\\\\.\\Root\\MSAPPS10")
  22.  
  23.  
  24. //**************************************************************************
  25. //* Declare an instance of the __Win32Provider so as to "register" the
  26. //* Office provider.
  27. //**************************************************************************
  28. instance of __Win32Provider as $P
  29. {
  30.     Name = "OffProv10";
  31.     // ClsId = "{D2BD7935-05FC-11D2-9059-00C04FD7A1BD}";
  32.     //this was define as class DECLSPEC_UUID("D2BD7935-05FC-11D2-9059-00C04FD7A1BD")
  33.     //OfficeObj;
  34.     // in Offprov.h
  35.    ClsId = "{9E30754B-29A9-41ce-8892-70E9E07D15DC}";
  36. };
  37.  
  38. instance of __InstanceProviderRegistration
  39. {
  40.     Provider = $P;
  41.     SupportsGet = TRUE;
  42.     SupportsPut = FALSE;
  43.     SupportsEnumeration = TRUE;
  44.     SupportsDelete = FALSE;
  45.     QuerySupportLevels = NULL;
  46. };
  47.  
  48. //**************************************************************************
  49. //* Class: Win32_Word10Summary
  50. //* Derived from:
  51. //**************************************************************************
  52. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  53. class Win32_Word10Summary
  54. {
  55.     [read: ToInstance ToSubClass] string Name;
  56.     [read: ToInstance ToSubClass] string Version;
  57.     [read: ToInstance ToSubClass] string Build;
  58.     [read: ToInstance ToSubClass] string ProductID;
  59.     [read: ToInstance ToSubClass] string Path;
  60.     [read: ToInstance ToSubClass] string Language;
  61.     [read: ToInstance ToSubClass] string SystemLanguage;
  62.     [read: ToInstance ToSubClass] string ActivePrinter;
  63.     [read: ToInstance ToSubClass] uint32 DocumentCount;
  64.     [read: ToInstance ToSubClass] uint32 TemplateCount;
  65.     [read: ToInstance ToSubClass] uint32 AddinCount;
  66. };
  67.  
  68. //**************************************************************************
  69. //* Class: Win32_Word10Document
  70. //* Derived from: 
  71. //**************************************************************************
  72. [dynamic: ToInstance, provider("OffProv10")]
  73. class Win32_Word10Document
  74. {
  75.     [key, read: ToInstance ToSubClass] string Name;
  76.     [read: ToInstance ToSubClass] string Path;
  77.     [read: ToInstance ToSubClass] real32 Size;
  78.     [read: ToInstance ToSubClass] datetime CreateDate;
  79. };
  80.  
  81. //**************************************************************************
  82. //* Class: Win32_Word10Template
  83. //* Derived from: 
  84. //**************************************************************************
  85. [dynamic: ToInstance, provider("OffProv10")]
  86. class Win32_Word10Template
  87. {
  88.     [key, read: ToInstance ToSubClass] string Name;
  89.     [read: ToInstance ToSubClass] string Path;
  90.     [read: ToInstance ToSubClass] string Type;
  91. };
  92.  
  93. //**************************************************************************
  94. //* Class: Win32_Word10Addin
  95. //* Derived from: 
  96. //**************************************************************************
  97. [dynamic: ToInstance, provider("OffProv10")]
  98. class Win32_Word10Addin
  99. {
  100.     [key, read: ToInstance ToSubClass] string Name;
  101.     [read: ToInstance ToSubClass] string Path;
  102.     [read: ToInstance ToSubClass] boolean Loaded;
  103.     [read: ToInstance ToSubClass] boolean Autoloaded;
  104. };
  105.  
  106. //**************************************************************************
  107. //* Class: Win32_Word10ActiveDocument
  108. //* Derived from: 
  109. //**************************************************************************
  110. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  111. class Win32_Word10ActiveDocument
  112. {
  113.     [read: ToInstance ToSubClass] string Name;
  114.     [read: ToInstance ToSubClass] string Path;
  115.     [read: ToInstance ToSubClass] real32 Size;
  116.     [read: ToInstance ToSubClass] datetime CreateDate;
  117.     [read: ToInstance ToSubClass] string Author;
  118.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  119.     [read: ToInstance ToSubClass] string LastAuthor;
  120.     [read: ToInstance ToSubClass] string Template;
  121.     [read: ToInstance ToSubClass] uint32 Chars;
  122.     [read: ToInstance ToSubClass] uint32 CharsWithSpaces;
  123.     [read: ToInstance ToSubClass] uint32 Words;
  124.     [read: ToInstance ToSubClass] uint32 Lines;
  125.     [read: ToInstance ToSubClass] uint32 Paragraphs;
  126.     [read: ToInstance ToSubClass] uint32 Pages;
  127.     [read: ToInstance ToSubClass] uint32 Sections;
  128.     [read: ToInstance ToSubClass] string View;
  129.     [read: ToInstance ToSubClass] uint32 ZoomPercentage;
  130.     [read: ToInstance ToSubClass] boolean AllowFastSaves;
  131.     [read: ToInstance ToSubClass] sint32 WindowPosLeft;
  132.     [read: ToInstance ToSubClass] sint32 WindowPosTop;
  133.     [read: ToInstance ToSubClass] string StoryTypes;
  134. };
  135.  
  136. //**************************************************************************
  137. //* Class: Win32_Word10ActiveDocumentNotable
  138. //* Derived from: 
  139. //**************************************************************************
  140. [dynamic: ToInstance, provider("OffProv10")]
  141. class Win32_Word10ActiveDocumentNotable
  142. {
  143.     [key, read: ToInstance ToSubClass] string Text;
  144. };
  145.  
  146. //**************************************************************************
  147. //* Class: Win32_Word10Fields
  148. //* Derived from: 
  149. //**************************************************************************
  150. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  151. class Win32_Word10Fields
  152. {
  153.     [read: ToInstance ToSubClass] uint32 FieldCount;
  154.     [read: ToInstance ToSubClass] boolean ShowFieldCodes;
  155.     [read: ToInstance ToSubClass] boolean UpdateFieldsAtPrint;
  156.     [read: ToInstance ToSubClass] boolean UpdateLinksAtOpen;
  157. };
  158.  
  159. //**************************************************************************
  160. //* Class: Win32_Word10Field
  161. //* Derived from: 
  162. //**************************************************************************
  163. [dynamic: ToInstance, provider("OffProv10")]
  164. class Win32_Word10Field
  165. {
  166.     [key, read: ToInstance ToSubClass] uint32 Index;
  167.     [read: ToInstance ToSubClass] string Type;
  168.     [read: ToInstance ToSubClass] string Code;
  169.     [read: ToInstance ToSubClass] boolean Locked;
  170. };
  171.  
  172. //**************************************************************************
  173. //* Class: Win32_Word10FileConverters
  174. //* Derived from: 
  175. //**************************************************************************
  176. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  177. class Win32_Word10FileConverters
  178. {
  179.     [read: ToInstance ToSubClass] string FileConverterCount;
  180. };
  181.  
  182. //**************************************************************************
  183. //* Class: Win32_Word10FileConverter
  184. //* Derived from: 
  185. //**************************************************************************
  186. [dynamic: ToInstance, provider("OffProv10")]
  187. class Win32_Word10FileConverter
  188. {
  189.     [key, read: ToInstance ToSubClass] string Name;
  190.     [read: ToInstance ToSubClass] boolean CanOpen;
  191.     [read: ToInstance ToSubClass] boolean CanSave;
  192.     [read: ToInstance ToSubClass] string Extensions;
  193. };
  194.  
  195. //**************************************************************************
  196. //* Class: Win32_Word10Fonts
  197. //* Derived from: 
  198. //**************************************************************************
  199. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  200. class Win32_Word10Fonts
  201. {
  202.     [read: ToInstance ToSubClass] boolean EmbedTrueTypeFonts;
  203.     [read: ToInstance ToSubClass] uint32 FontCount;
  204. };
  205.  
  206. //**************************************************************************
  207. //* Class: Win32_Word10Font
  208. //* Derived from: 
  209. //**************************************************************************
  210. [dynamic: ToInstance, provider("OffProv10")]
  211. class Win32_Word10Font
  212. {
  213.     [key, read: ToInstance ToSubClass] string Name;
  214. };
  215.  
  216. //**************************************************************************
  217. //* Class: Win32_Word10Sections
  218. //* Derived from: 
  219. //**************************************************************************
  220. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  221. class Win32_Word10Sections
  222. {
  223.     [read: ToInstance ToSubClass] uint32 SectionCount;
  224. };
  225.  
  226. //**************************************************************************
  227. //* Class: Win32_Word10HeaderAndFooter
  228. //* Derived from: 
  229. //**************************************************************************
  230. [dynamic: ToInstance, provider("OffProv10")]
  231. class Win32_Word10HeaderAndFooter
  232. {
  233.     [key, read: ToInstance ToSubClass] uint32 Section;
  234.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  235.     [read: ToInstance ToSubClass] real32 FooterDistance;
  236.     [read: ToInstance ToSubClass] uint32 HeaderChars;
  237.     [read: ToInstance ToSubClass] boolean HeaderLinkedToPrevious;
  238.     [read: ToInstance ToSubClass] string HeaderText;
  239.     [read: ToInstance ToSubClass] uint32 FooterChars;
  240.     [read: ToInstance ToSubClass] boolean FooterLinkedToPrevious;
  241.     [read: ToInstance ToSubClass] string FooterText;
  242.     [read: ToInstance ToSubClass] uint32 FirstHeaderChars;
  243.     [read: ToInstance ToSubClass] boolean FirstHeaderLinkedToPrevious;
  244.     [read: ToInstance ToSubClass] string FirstHeaderText;
  245.     [read: ToInstance ToSubClass] uint32 FirstFooterChars;
  246.     [read: ToInstance ToSubClass] boolean FirstFooterLinkedToPrevious;
  247.     [read: ToInstance ToSubClass] string FirstFooterText;
  248.     [read: ToInstance ToSubClass] uint32 EvenHeaderChars;
  249.     [read: ToInstance ToSubClass] boolean EvenHeaderLinkedToPrevious;
  250.     [read: ToInstance ToSubClass] string EvenHeaderText;
  251.     [read: ToInstance ToSubClass] uint32 EvenFooterChars;
  252.     [read: ToInstance ToSubClass] boolean EvenFooterLinkedToPrevious;
  253.     [read: ToInstance ToSubClass] string EvenFooterText;
  254.     [read: ToInstance ToSubClass] string Notables;
  255. };
  256.  
  257. //**************************************************************************
  258. //* Class: Win32_Word10Hyperlinks
  259. //* Derived from: 
  260. //**************************************************************************
  261. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  262. class Win32_Word10Hyperlinks
  263. {
  264.     [read: ToInstance ToSubClass] uint32 HyperlinkCount;
  265. };
  266.  
  267. //**************************************************************************
  268. //* Class: Win32_Word10Hyperlink
  269. //* Derived from: 
  270. //**************************************************************************
  271. [dynamic: ToInstance, provider("OffProv10")]
  272. class Win32_Word10Hyperlink
  273. {
  274.     [key, read: ToInstance ToSubClass] uint32 Index;
  275.     [read: ToInstance ToSubClass] string Target;
  276.     [read: ToInstance ToSubClass] string Address;
  277.     [read: ToInstance ToSubClass] string TextToDisplay;
  278.     [read: ToInstance ToSubClass] string Type;
  279.     [read: ToInstance ToSubClass] string Subaddress;
  280.     [read: ToInstance ToSubClass] string ScreenTip;
  281.     [read: ToInstance ToSubClass] string Name;
  282. };
  283.  
  284. //**************************************************************************
  285. //* Class: Win32_Word10MailMerge
  286. //* Derived from: 
  287. //**************************************************************************
  288. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  289. class Win32_Word10MailMerge
  290. {
  291.     [read: ToInstance ToSubClass] string DocumentName;
  292.     [read: ToInstance ToSubClass] string DocumentType;
  293.     [read: ToInstance ToSubClass] string MergeTo;
  294.     [read: ToInstance ToSubClass] string State;
  295.     [read: ToInstance ToSubClass] boolean SuppressBlankLines;
  296.     [read: ToInstance ToSubClass] boolean ViewFieldCodes;
  297.     [read: ToInstance ToSubClass] uint32 FieldCount;
  298.     [read: ToInstance ToSubClass] string FieldCodes;
  299.     [read: ToInstance ToSubClass] string DataSourceName;
  300.     [read: ToInstance ToSubClass] string DataSourceType;
  301.     [read: ToInstance ToSubClass] string ActiveRecord;
  302.     [read: ToInstance ToSubClass] string FieldNames;
  303.     [read: ToInstance ToSubClass] string Notables;
  304. };
  305.  
  306. //**************************************************************************
  307. //* Class: Win32_Word10PageNumber
  308. //* Derived from: 
  309. //**************************************************************************
  310. [dynamic: ToInstance, provider("OffProv10")]
  311. class Win32_Word10PageNumber
  312. {
  313.     [key, read: ToInstance ToSubClass] uint32 Section;
  314.     [read: ToInstance ToSubClass] uint32 PageNumbers;
  315.     [read: ToInstance ToSubClass] string PageNumbersIn;
  316.     [read: ToInstance ToSubClass] uint32 Start;
  317.     [read: ToInstance ToSubClass] boolean Restart;
  318.     [read: ToInstance ToSubClass] boolean ShowFirst;
  319. };
  320.  
  321. //**************************************************************************
  322. //* Class: Win32_Word10PageSetup
  323. //* Derived from: 
  324. //**************************************************************************
  325. [dynamic: ToInstance, provider("OffProv10")]
  326. class Win32_Word10PageSetup
  327. {
  328.     [key, read: ToInstance ToSubClass] uint32 Section;
  329.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  330.     [read: ToInstance ToSubClass] real32 FooterDistance;
  331.     [read: ToInstance ToSubClass] real32 TopMargin;
  332.     [read: ToInstance ToSubClass] real32 BottomMargin;
  333.     [read: ToInstance ToSubClass] real32 LeftMargin;
  334.     [read: ToInstance ToSubClass] real32 RightMargin;
  335.     [read: ToInstance ToSubClass] string PaperSize;
  336.     [read: ToInstance ToSubClass] real32 PageHeight;
  337.     [read: ToInstance ToSubClass] real32 PageWidth;
  338.     [read: ToInstance ToSubClass] string Orientation;
  339.     [read: ToInstance ToSubClass] string SectionStart;
  340.     [read: ToInstance ToSubClass] string VerticalAlignment;
  341.     [read: ToInstance ToSubClass] real32 CharsLine;
  342.     [read: ToInstance ToSubClass] real32 LinesPage;
  343.     [read: ToInstance ToSubClass] string Notables;
  344. };
  345.  
  346. //**************************************************************************
  347. //* Class: Win32_Word10Styles
  348. //* Derived from: 
  349. //**************************************************************************
  350. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  351. class Win32_Word10Styles
  352. {
  353.     [read: ToInstance ToSubClass] boolean AutoFormatAsYouTypeDefineStyles;
  354.     [read: ToInstance ToSubClass] boolean AutoFormatPreserveStyles;
  355.     [read: ToInstance ToSubClass] uint32 ParagraphStyleCount;
  356.     [read: ToInstance ToSubClass] uint32 CharacterStyleCount;
  357. };
  358.  
  359. //**************************************************************************
  360. //* Class: Win32_Word10ParagraphStyle
  361. //* Derived from: 
  362. //**************************************************************************
  363. [dynamic: ToInstance, provider("OffProv10")]
  364. class Win32_Word10ParagraphStyle
  365. {
  366.     [key, read: ToInstance ToSubClass] string Name;
  367.     [read: ToInstance ToSubClass] string Description;
  368.     [read: ToInstance ToSubClass] string BaseStyle;
  369.     [read: ToInstance ToSubClass] string NextStyle;
  370.     [read: ToInstance ToSubClass] boolean BuiltIn;
  371.     [read: ToInstance ToSubClass] boolean NoProofing;
  372.     [read: ToInstance ToSubClass] boolean AutomaticallyUpdate;
  373. };
  374.  
  375. //**************************************************************************
  376. //* Class: Win32_Word10CharacterStyle
  377. //* Derived from: 
  378. //**************************************************************************
  379. [dynamic: ToInstance, provider("OffProv10")]
  380. class Win32_Word10CharacterStyle
  381. {
  382.     [key, read: ToInstance ToSubClass] string Name;
  383.     [read: ToInstance ToSubClass] string Description;
  384.     [read: ToInstance ToSubClass] string BaseStyle;
  385.     [read: ToInstance ToSubClass] boolean BuiltIn;
  386. };
  387.  
  388. //**************************************************************************
  389. //* Class: Win32_Word10Settings
  390. //* Derived from: 
  391. //**************************************************************************
  392. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  393. class Win32_Word10Settings
  394. {
  395.     [read: ToInstance ToSubClass] boolean BackgroundSave;
  396.     [read: ToInstance ToSubClass] boolean AllowDragAndDrop;
  397.     [read: ToInstance ToSubClass] boolean CreateBackup;
  398.     [read: ToInstance ToSubClass] boolean AutoHyphenation;
  399.     [read: ToInstance ToSubClass] uint32 SaveInterval;
  400.     [read: ToInstance ToSubClass] boolean Pagination;
  401.     [read: ToInstance ToSubClass] boolean ConfirmConversions;
  402.     [read: ToInstance ToSubClass] string DefaultFilePath;
  403.     [read: ToInstance ToSubClass] string DefaultSaveFormat;
  404.     [read: ToInstance ToSubClass] boolean DisplayAutoCompleteTips;
  405.     [read: ToInstance ToSubClass] boolean DisplayHorizontalScrollBar;
  406.     [read: ToInstance ToSubClass] boolean DisplayRecentFiles;
  407.     [read: ToInstance ToSubClass] uint32 RecentFilesMaximum;
  408.     [read: ToInstance ToSubClass] boolean DisplayRulers;
  409.     [read: ToInstance ToSubClass] boolean DisplayScreenTips;
  410.     [read: ToInstance ToSubClass] boolean DisplayScrollBars;
  411.     [read: ToInstance ToSubClass] boolean DisplayStatusBar;
  412.     [read: ToInstance ToSubClass] string MeasurementUnits;
  413.     [read: ToInstance ToSubClass] uint32 MinimumFontSize;
  414.     [read: ToInstance ToSubClass] boolean Overtype;
  415.     [read: ToInstance ToSubClass] boolean PrintFormsData;
  416.     [read: ToInstance ToSubClass] boolean PrintPostScriptOverText;
  417.     [read: ToInstance ToSubClass] boolean PrintRevisions;
  418.     [read: ToInstance ToSubClass] boolean SavePropertiesPrompt;
  419.     [read: ToInstance ToSubClass] boolean SaveNormalPrompt;
  420.     [read: ToInstance ToSubClass] boolean EnableSound;
  421.     [read: ToInstance ToSubClass] boolean SaveFormsData;
  422.     [read: ToInstance ToSubClass] boolean ShowAll;
  423.     [read: ToInstance ToSubClass] boolean AnimateScreenMovements;
  424.     [read: ToInstance ToSubClass] boolean ShowAnimation;
  425.     [read: ToInstance ToSubClass] boolean BlueScreen;
  426.     [read: ToInstance ToSubClass] boolean ShowBookmarks;
  427.     [read: ToInstance ToSubClass] boolean ShowMainTextLayer;
  428.     [read: ToInstance ToSubClass] boolean ShowDrawings;
  429.     [read: ToInstance ToSubClass] boolean ShowFieldCodes;
  430.     [read: ToInstance ToSubClass] string FieldShading;
  431.     [read: ToInstance ToSubClass] boolean ShowHiddenText;
  432.     [read: ToInstance ToSubClass] boolean ShowHighlight;
  433.     [read: ToInstance ToSubClass] boolean ShowHyphens;
  434.     [read: ToInstance ToSubClass] boolean ShowObjectAnchors;
  435.     [read: ToInstance ToSubClass] boolean ShowParagraphs;
  436.     [read: ToInstance ToSubClass] boolean ShowRevisions;
  437.     [read: ToInstance ToSubClass] boolean ShowSpaces;
  438.     [read: ToInstance ToSubClass] boolean ShowSummary;
  439.     [read: ToInstance ToSubClass] boolean ShowTabs;
  440.     [read: ToInstance ToSubClass] boolean TableGridlines;
  441.     [read: ToInstance ToSubClass] boolean ShowTextBoundaries;
  442.     [read: ToInstance ToSubClass] boolean TabIndentKey;
  443.     [read: ToInstance ToSubClass] boolean TrackRevisions;
  444.     [read: ToInstance ToSubClass] boolean ReplaceSelection;
  445.     [read: ToInstance ToSubClass] boolean INSKeyForPaste;
  446.     [read: ToInstance ToSubClass] boolean SmartCutPaste;
  447. };
  448.  
  449. //**************************************************************************
  450. //* Class: Win32_Word10AlternateStartupFileLocation
  451. //* Derived from: 
  452. //**************************************************************************
  453. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  454. class Win32_Word10AlternateStartupFileLocation
  455. {
  456.     [read: ToInstance ToSubClass] string Path;
  457. };
  458.  
  459.  
  460. //**************************************************************************
  461. //* Class: Win32_Word10StartupFileLocation
  462. //* Derived from: 
  463. //**************************************************************************
  464. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  465. class Win32_Word10StartupFileLocation
  466. {
  467.     [read: ToInstance ToSubClass] string Path;
  468. };
  469.  
  470. //**************************************************************************
  471. //* Class: Win32_Word10DefaultFileLocation
  472. //* Derived from: 
  473. //**************************************************************************
  474. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  475. class Win32_Word10DefaultFileLocation
  476. {
  477.     [read: ToInstance ToSubClass] string Path;
  478. };
  479.  
  480. //**************************************************************************
  481. //* Class: Win32_Word10Tables
  482. //* Derived from: 
  483. //**************************************************************************
  484. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  485. class Win32_Word10Tables
  486. {
  487.     [read: ToInstance ToSubClass] uint32 TableCount;
  488. };
  489.  
  490. //**************************************************************************
  491. //* Class: Win32_Word10SelectedTable
  492. //* Derived from: 
  493. //**************************************************************************
  494. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  495. class Win32_Word10SelectedTable
  496. {
  497.     [read: ToInstance ToSubClass] uint32 Page;
  498.     [read: ToInstance ToSubClass] uint32 Section;
  499.     [read: ToInstance ToSubClass] uint32 Rows;
  500.     [read: ToInstance ToSubClass] uint32 Columns;
  501.     [read: ToInstance ToSubClass] boolean AllowPageBreaks;
  502.     [read: ToInstance ToSubClass] string RowsAllowPageBreaks;
  503.     [read: ToInstance ToSubClass] boolean AllowAutoFit;
  504.     [read: ToInstance ToSubClass] string CellsAllowAutoFit;
  505.     [read: ToInstance ToSubClass] uint32 NestingLevel;
  506.     [read: ToInstance ToSubClass] uint32 Tables;
  507.     [read: ToInstance ToSubClass] string PreferredWidthType;
  508.     [read: ToInstance ToSubClass] real32 PreferredWidth;
  509.     [read: ToInstance ToSubClass] real32 Spacing;
  510.     [read: ToInstance ToSubClass] real32 TopMargin;
  511.     [read: ToInstance ToSubClass] real32 BottomMargin;
  512.     [read: ToInstance ToSubClass] real32 LeftMargin;
  513.     [read: ToInstance ToSubClass] real32 RightMargin;
  514.     [read: ToInstance ToSubClass] string RowAlignment;
  515.     [read: ToInstance ToSubClass] string RowHeightRule;
  516.     [read: ToInstance ToSubClass] real32 LeftIndent;
  517.     [read: ToInstance ToSubClass] boolean Uniform;
  518. };
  519.  
  520. //**************************************************************************
  521. //* Class: Win32_Word10Table
  522. //* Derived from: 
  523. //**************************************************************************
  524. [dynamic: ToInstance, provider("OffProv10")]
  525. class Win32_Word10Table
  526. {
  527.     [key, read: ToInstance ToSubClass] uint32 Index;
  528.     [read: ToInstance ToSubClass] uint32 Page;
  529.     [read: ToInstance ToSubClass] uint32 Section;
  530.     [read: ToInstance ToSubClass] uint32 Rows;
  531.     [read: ToInstance ToSubClass] uint32 Columns;
  532.     [read: ToInstance ToSubClass] boolean NestedTables;
  533. };
  534.  
  535.  
  536. //**************************************************************************
  537. //* Class: Win32_ExcelSummary
  538. //* Derived from:
  539. //**************************************************************************
  540. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  541. class Win32_ExcelSummary
  542. {
  543.     [read: ToInstance ToSubClass] string Name;
  544.     [read: ToInstance ToSubClass] string Version;
  545.     [read: ToInstance ToSubClass] string Build;
  546.     [read: ToInstance ToSubClass] string ProductID;
  547.     [read: ToInstance ToSubClass] string Path;
  548.     [read: ToInstance ToSubClass] string Language;
  549.     [read: ToInstance ToSubClass] uint32 WorkbookCount;
  550. };
  551.  
  552. //**************************************************************************
  553. //* Class: Win32_ExcelWorkbook
  554. //* Derived from: 
  555. //**************************************************************************
  556. [dynamic: ToInstance, provider("OffProv10")]
  557. class Win32_ExcelWorkbook
  558. {
  559.     [key, read: ToInstance ToSubClass] string Name;
  560.     [read: ToInstance ToSubClass] string Path;
  561.     [read: ToInstance ToSubClass] real32 Size;
  562.     [read: ToInstance ToSubClass] datetime CreateDate;
  563. };
  564.  
  565. //**************************************************************************
  566. //* Class: Win32_ExcelActiveWorkbook
  567. //* Derived from:
  568. //**************************************************************************
  569. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  570. class Win32_ExcelActiveWorkbook
  571. {
  572.     [read: ToInstance ToSubClass] string Name;
  573.     [read: ToInstance ToSubClass] string Path;
  574.     [read: ToInstance ToSubClass] real32 Size;
  575.     [read: ToInstance ToSubClass] string Format;
  576.     [read: ToInstance ToSubClass] datetime CreateDate;
  577.     [read: ToInstance ToSubClass] string Author;
  578.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  579.     [read: ToInstance ToSubClass] string LastAuthor;
  580.     [read: ToInstance ToSubClass] string ActiveSheet;
  581.     [read: ToInstance ToSubClass] string ActiveWindowType;
  582.     [read: ToInstance ToSubClass] uint32 ActiveWindowZoom;
  583.     [read: ToInstance ToSubClass] uint32 SheetCount;
  584. };
  585.  
  586. //**************************************************************************
  587. //* Class: Win32_ExcelActiveWorkbookNotable
  588. //* Derived from: 
  589. //**************************************************************************
  590. [dynamic: ToInstance, provider("OffProv10")]
  591. class Win32_ExcelActiveWorkbookNotable
  592. {
  593.     [key, read: ToInstance ToSubClass] string Text;
  594. };
  595.  
  596. //**************************************************************************
  597. //* Class: Win32_ExcelSheet
  598. //* Derived from: 
  599. //**************************************************************************
  600. [dynamic: ToInstance, provider("OffProv10")]
  601. class Win32_ExcelSheet
  602. {
  603.     [key, read: ToInstance ToSubClass] string Name;
  604.     [read: ToInstance ToSubClass] string Type;
  605.     [read: ToInstance ToSubClass] uint32 Cells;
  606.     [read: ToInstance ToSubClass] uint32 Rows;
  607.     [read: ToInstance ToSubClass] uint32 Columns;
  608. };
  609.  
  610. //**************************************************************************
  611. //* Class: Win32_ExcelAddIns
  612. //* Derived from:
  613. //**************************************************************************
  614. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  615. class Win32_ExcelAddIns
  616. {
  617.     [read: ToInstance ToSubClass] uint32 AddInCount;
  618. };
  619.  
  620. //**************************************************************************
  621. //* Class: Win32_ExcelAddIn
  622. //* Derived from:
  623. //**************************************************************************
  624. [dynamic: ToInstance, provider("OffProv10")]
  625. class Win32_ExcelAddIn
  626. {
  627.     [key, read: ToInstance ToSubClass] string Name;
  628.     [read: ToInstance ToSubClass] string Path;
  629.     [read: ToInstance ToSubClass] boolean Installed;
  630. };
  631.  
  632. //**************************************************************************
  633. //* Class: Win32_ExcelCharts
  634. //* Derived from:
  635. //**************************************************************************
  636. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  637. class Win32_ExcelCharts
  638. {
  639.     [read: ToInstance ToSubClass] string ActiveChart;
  640.     [read: ToInstance ToSubClass] uint32 ChartCount;
  641. };
  642.  
  643. //**************************************************************************
  644. //* Class: Win32_ExcelChart
  645. //* Derived from:
  646. //**************************************************************************
  647. [dynamic: ToInstance, provider("OffProv10")]
  648. class Win32_ExcelChart
  649. {
  650.     [key, read: ToInstance ToSubClass] string Name;
  651. };
  652.  
  653. //**************************************************************************
  654. //* Class: Win32_ExcelComAddins
  655. //* Derived from: 
  656. //**************************************************************************
  657. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  658. class Win32_ExcelComAddins
  659. {
  660.     [read: ToInstance ToSubClass] uint32 AddInCount;
  661. };
  662.  
  663. //**************************************************************************
  664. //* Class: Win32_ExcelComAddin
  665. //* Derived from: 
  666. //**************************************************************************
  667. [dynamic: ToInstance, provider("OffProv10")]
  668. class Win32_ExcelComAddin
  669. {
  670.     [key, read: ToInstance ToSubClass] string Name;
  671.     [read: ToInstance ToSubClass] string Installed;
  672.     [read: ToInstance ToSubClass] string Creator;
  673.     [read: ToInstance ToSubClass] string Guid;
  674.     [read: ToInstance ToSubClass] string Path;
  675. };
  676.  
  677. //**************************************************************************
  678. //* Class: Win32_WordComAddins
  679. //* Derived from: 
  680. //**************************************************************************
  681. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  682. class Win32_WordComAddins
  683. {
  684.     [read: ToInstance ToSubClass] uint32 AddInCount;
  685. };
  686.  
  687. //**************************************************************************
  688. //* Class: Win32_WordComAddin
  689. //* Derived from: 
  690. //**************************************************************************
  691. [dynamic: ToInstance, provider("OffProv10")]
  692. class Win32_WordComAddin
  693. {
  694.     [key, read: ToInstance ToSubClass] string Name;
  695.     [read: ToInstance ToSubClass] string Installed;
  696.     [read: ToInstance ToSubClass] string Creator;
  697.     [read: ToInstance ToSubClass] string Guid;
  698.     [read: ToInstance ToSubClass] string Path;
  699. };
  700.  
  701. //**************************************************************************
  702. //* Class: Win32_PowerPointSummary
  703. //* Derived from:
  704. //**************************************************************************
  705. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  706. class Win32_PowerPointSummary
  707. {
  708.     [read: ToInstance ToSubClass] string Name;
  709.     [read: ToInstance ToSubClass] string Version;
  710.     [read: ToInstance ToSubClass] string Build;
  711.     [read: ToInstance ToSubClass] string ProductID;
  712.     [read: ToInstance ToSubClass] string Path;
  713.     [read: ToInstance ToSubClass] string Language;
  714.     [read: ToInstance ToSubClass] uint32 PresentationCount;
  715. };
  716.  
  717. //**************************************************************************
  718. //* Class: Win32_PowerPointPresentation
  719. //* Derived from: 
  720. //**************************************************************************
  721. [dynamic: ToInstance, provider("OffProv10")]
  722. class Win32_PowerPointPresentation
  723. {
  724.     [key, read: ToInstance ToSubClass] string Name;
  725.     [read: ToInstance ToSubClass] string Path;
  726.     [read: ToInstance ToSubClass] real32 Size;
  727.     [read: ToInstance ToSubClass] datetime CreateDate;
  728. };
  729.  
  730. //**************************************************************************
  731. //* Class: Win32_PowerPointActivePresentation
  732. //* Derived from: 
  733. //**************************************************************************
  734. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  735. class Win32_PowerPointActivePresentation
  736. {
  737.     [read: ToInstance ToSubClass] string Name;
  738.     [read: ToInstance ToSubClass] string Path;
  739.     [read: ToInstance ToSubClass] real32 Size;
  740.     [read: ToInstance ToSubClass] datetime CreateDate;
  741.     [read: ToInstance ToSubClass] string Author;
  742.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  743.     [read: ToInstance ToSubClass] string LastAuthor;
  744.     [read: ToInstance ToSubClass] string Template;
  745.     [read: ToInstance ToSubClass] uint32 Slides;
  746.     [read: ToInstance ToSubClass] uint32 Words;
  747.     [read: ToInstance ToSubClass] uint32 Paragraphs;
  748.     [read: ToInstance ToSubClass] string View;
  749. };
  750.  
  751. //**************************************************************************
  752. //* Class: Win32_OutlookSummary
  753. //* Derived from:
  754. //**************************************************************************
  755. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  756. class Win32_OutlookSummary
  757. {
  758.     [read: ToInstance ToSubClass] string Name;
  759.     [read: ToInstance ToSubClass] string Version;
  760.     [read: ToInstance ToSubClass] string Build;
  761.     [read: ToInstance ToSubClass] string ProductID;
  762.     [read: ToInstance ToSubClass] string Language;
  763.     [read: ToInstance ToSubClass] string User;
  764.     [read: ToInstance ToSubClass] string Folder;
  765.     [read: ToInstance ToSubClass] string Item;
  766.     [read: ToInstance ToSubClass] string Path;
  767.     [read: ToInstance ToSubClass] string SystemLanguage;
  768.     [read: ToInstance ToSubClass] string MailSupport;
  769. };
  770.  
  771. //**************************************************************************
  772. //* Class: Win32_AccessSummary
  773. //* Derived from:
  774. //**************************************************************************
  775. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  776. class Win32_AccessSummary
  777. {
  778.     [read: ToInstance ToSubClass] string Name;
  779.     [read: ToInstance ToSubClass] string Version;
  780.     [read: ToInstance ToSubClass] string Build;
  781.     [read: ToInstance ToSubClass] string ProductID;
  782.     [read: ToInstance ToSubClass] string Path;
  783.     [read: ToInstance ToSubClass] string Language;
  784.     [read: ToInstance ToSubClass] string ADOVersion;
  785.     [read: ToInstance ToSubClass] string VBAVersion;
  786.     [read: ToInstance ToSubClass] string References;
  787. };
  788.  
  789. //**************************************************************************
  790. //* Class: Win32_AccessDatabase
  791. //* Derived from:
  792. //**************************************************************************
  793. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  794. class Win32_AccessDatabase
  795. {
  796.     [read: ToInstance ToSubClass] string Name;
  797.     [read: ToInstance ToSubClass] string Path;
  798.     [read: ToInstance ToSubClass] real32 Size;
  799.     [read: ToInstance ToSubClass] datetime CreateDate;
  800.     [read: ToInstance ToSubClass] string User;
  801.     [read: ToInstance ToSubClass] string JetVersion;
  802. };
  803.  
  804. //**************************************************************************
  805. //* Class: Win32_AccessProject
  806. //* Derived from:
  807. //**************************************************************************
  808. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  809. class Win32_AccessProject
  810. {
  811.     [read: ToInstance ToSubClass] string Name;
  812.     [read: ToInstance ToSubClass] string Path;
  813.     [read: ToInstance ToSubClass] real32 Size;
  814.     [read: ToInstance ToSubClass] datetime CreateDate;
  815.     [read: ToInstance ToSubClass] string ServerName;
  816.     [read: ToInstance ToSubClass] string DatabaseName;
  817.     [read: ToInstance ToSubClass] string LoginName;
  818.     [read: ToInstance ToSubClass] string DBMSName;
  819.     [read: ToInstance ToSubClass] string DBMSVersion;
  820.     [read: ToInstance ToSubClass] string DSNName;
  821. };
  822.  
  823. //**************************************************************************
  824. //* Class: Win32_PublisherSummary
  825. //* Derived from: 
  826. //**************************************************************************
  827. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  828. class Win32_PublisherSummary
  829. {
  830.     [read: ToInstance ToSubClass] string DisplayName;
  831.     [read: ToInstance ToSubClass] string RegOwner;
  832.     [read: ToInstance ToSubClass] string RegCompany;
  833.     [read: ToInstance ToSubClass] string ProductID;
  834.     [read: ToInstance ToSubClass] string LocalPackage;
  835.     [read: ToInstance ToSubClass] string DisplayVersion;
  836.     [read: ToInstance ToSubClass] string InstallDate;
  837.     [read: ToInstance ToSubClass] string InstallLocation;
  838.     [read: ToInstance ToSubClass] string InstallSource;
  839.     [read: ToInstance ToSubClass] string Language;
  840.     [read: ToInstance ToSubClass] string HelpLink;
  841.     [read: ToInstance ToSubClass] string URLInfoAbout;
  842.     [read: ToInstance ToSubClass] string URLUpdateInfo;
  843.     [read: ToInstance ToSubClass] string SystemLanguage;
  844.     [read: ToInstance ToSubClass] string ActivePrinter;
  845.  
  846. };
  847.  
  848. //**************************************************************************
  849. //* Class: Win32_FrontPageSummary
  850. //* Derived from: 
  851. //**************************************************************************
  852. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  853. class Win32_FrontPageSummary
  854. {
  855.     [read: ToInstance ToSubClass] string Name;
  856.     [read: ToInstance ToSubClass] string Version;
  857.     [read: ToInstance ToSubClass] string Build;
  858.     [read: ToInstance ToSubClass] string ProductID;
  859.     [read: ToInstance ToSubClass] string Path;
  860.     [read: ToInstance ToSubClass] string Language;
  861. };
  862.  
  863. //**************************************************************************
  864. //* Class: Win32_FrontPageActiveWeb
  865. //* Derived from: 
  866. //**************************************************************************
  867. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  868. class Win32_FrontPageActiveWeb
  869. {
  870.     [read: ToInstance ToSubClass] string Name;
  871.     [read: ToInstance ToSubClass] uint32 PageCount;
  872. };
  873.  
  874. //**************************************************************************
  875. //* Class: Win32_FrontPageWebProperty
  876. //* Derived from: 
  877. //**************************************************************************
  878. [dynamic: ToInstance, provider("OffProv10")]
  879. class Win32_FrontPageWebProperty
  880. {
  881.     [key, read: ToInstance ToSubClass] string Name;
  882.     [read: ToInstance ToSubClass] string Value;
  883. };
  884.  
  885. //**************************************************************************
  886. //* Class: Win32_FrontPageActivePage
  887. //* Derived from: 
  888. //**************************************************************************
  889. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  890. class Win32_FrontPageActivePage
  891. {
  892.     [read: ToInstance ToSubClass] string Name;
  893. };
  894.  
  895. //**************************************************************************
  896. //* Class: Win32_FrontPagePageProperty
  897. //* Derived from: 
  898. //**************************************************************************
  899. [dynamic: ToInstance, provider("OffProv10")]
  900. class Win32_FrontPagePageProperty
  901. {
  902.     [key, read: ToInstance ToSubClass] string Name;
  903.     [read: ToInstance ToSubClass] string Value;
  904. };
  905.  
  906. //**************************************************************************
  907. //* Class: Win32_FrontPageAddIns
  908. //* Derived from: 
  909. //**************************************************************************
  910. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  911. class Win32_FrontPageAddIns
  912. {
  913.     [read: ToInstance ToSubClass] uint32 AddInCount;
  914. };
  915.  
  916. //**************************************************************************
  917. //* Class: Win32_FrontPageAddIn
  918. //* Derived from: 
  919. //**************************************************************************
  920. [dynamic: ToInstance, provider("OffProv10")]
  921. class Win32_FrontPageAddIn
  922. {
  923.     [key, read: ToInstance ToSubClass] string Name;
  924.     [read: ToInstance ToSubClass] string Installed;
  925.     [read: ToInstance ToSubClass] string Creator;
  926.     [read: ToInstance ToSubClass] string Guid;
  927. };
  928.  
  929. //**************************************************************************
  930. //* Class: Win32_FrontPageThemes
  931. //* Derived from: 
  932. //**************************************************************************
  933. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  934. class Win32_FrontPageThemes
  935. {
  936.     [read: ToInstance ToSubClass] uint32 ThemeCount;
  937. };
  938.  
  939. //**************************************************************************
  940. //* Class: Win32_FrontPageTheme
  941. //* Derived from: 
  942. //**************************************************************************
  943. [dynamic: ToInstance, provider("OffProv10")]
  944. class Win32_FrontPageTheme
  945. {
  946.     [key, read: ToInstance ToSubClass] string Name;
  947. };
  948.  
  949. //**************************************************************************
  950. //* Class: Win32_WebConnectionError
  951. //* Derived from: 
  952. //**************************************************************************
  953. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  954. class Win32_WebConnectionError
  955. {
  956.     [read: ToInstance ToSubClass] string MessageFirstLine;
  957.     [read: ToInstance ToSubClass] string Timestamp;
  958. };
  959.  
  960. //**************************************************************************
  961. //* Class: Win32_WebConnectionErrorMessage
  962. //* Derived from: 
  963. //**************************************************************************
  964. [dynamic: ToInstance, provider("OffProv10")]
  965. class Win32_WebConnectionErrorMessage
  966. {
  967.     [key, read: ToInstance ToSubClass] string AdditionalLine;
  968. };
  969.  
  970. //**************************************************************************
  971. //* Class: Win32_WebConnectionErrorText
  972. //* Derived from: 
  973. //**************************************************************************
  974. [dynamic: ToInstance, provider("OffProv10")]
  975. class Win32_WebConnectionErrorText
  976. {
  977.     [key, read: ToInstance ToSubClass] string Text;
  978. };
  979.  
  980. //**************************************************************************
  981. //* Class: Win32_ServerExtension
  982. //* Derived from:
  983. //**************************************************************************
  984. [dynamic: ToInstance, provider("OffProv10")]
  985. class Win32_ServerExtension
  986. {
  987.     [read: ToInstance ToSubClass] string ServerType;
  988.     [key, read: ToInstance ToSubClass] string PortNumber;
  989.     [read: ToInstance ToSubClass] string Version;
  990.     [read: ToInstance ToSubClass] string Path;
  991. };
  992.  
  993. //**************************************************************************
  994. //* Class: Win32_Transport
  995. //* Derived from: 
  996. //**************************************************************************
  997. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  998. class Win32_Transport
  999. {
  1000.     [read: ToInstance ToSubClass] boolean ProviderForInternetPublishing;
  1001.     [read: ToInstance ToSubClass] boolean OfficeInternetPublishing;
  1002. };
  1003.  
  1004. //**************************************************************************
  1005. //* Class: Win32_OdbcCoreComponent
  1006. //* Derived from:
  1007. //**************************************************************************
  1008. [dynamic: ToInstance, provider("OffProv10")]
  1009. class Win32_OdbcCoreComponent
  1010. {
  1011.     [key, read: ToInstance ToSubClass] string Description;
  1012.     [read: ToInstance ToSubClass] string Version;
  1013.     [read: ToInstance ToSubClass] string File;
  1014. };
  1015.  
  1016. //**************************************************************************
  1017. //* Class: Win32_OdbcDriver
  1018. //* Derived from:
  1019. //**************************************************************************
  1020. [dynamic: ToInstance, provider("OffProv10")]
  1021. class Win32_OdbcDriver
  1022. {
  1023.     [key, read: ToInstance ToSubClass] string Name;
  1024.     [read: ToInstance ToSubClass] string File;
  1025.     [read: ToInstance ToSubClass] datetime Date;
  1026.     [read: ToInstance ToSubClass] string Version;
  1027. };
  1028.  
  1029. //**************************************************************************
  1030. //* Class: Win32_OleDbProvider
  1031. //* Derived from:
  1032. //**************************************************************************
  1033. [dynamic: ToInstance, provider("OffProv10")]
  1034. class Win32_OleDbProvider
  1035. {
  1036.     [key, read: ToInstance ToSubClass] string Name;
  1037.     [read: ToInstance ToSubClass] string Version;
  1038. };
  1039.  
  1040.  
  1041.  
  1042. //**************************************************************************
  1043. //* Class: Win32_OfficeWatsonLog
  1044. //* Derived from:
  1045. //**************************************************************************
  1046. [dynamic: ToInstance, provider("OffProv10")]
  1047. class Win32_OfficeWatsonLog
  1048. {
  1049.     [key, read: ToInstance ToSubClass] string Event;
  1050.     [read: ToInstance ToSubClass] string Category;
  1051.     [read: ToInstance ToSubClass] string BucketID;
  1052.     [read: ToInstance ToSubClass] string AppName;
  1053.     [read: ToInstance ToSubClass] string Version;
  1054.     [read: ToInstance ToSubClass] string ModuleName;
  1055.     [read: ToInstance ToSubClass] string ModuleVersion;
  1056.     [read: ToInstance ToSubClass] string Offset;
  1057.     [read: ToInstance ToSubClass] datetime Date;
  1058. };
  1059.  
  1060. //**************************************************************************
  1061. //* Class: Win32_JetCoreComponents
  1062. //* Derived from:
  1063. //**************************************************************************
  1064. [dynamic: ToInstance, provider("OffProv10")]
  1065. class Win32_JetCoreComponents
  1066. {
  1067.     [key, read: ToInstance ToSubClass] string Description;
  1068.     [read: ToInstance ToSubClass] string Path;
  1069.     [read: ToInstance ToSubClass] string Version;
  1070. };
  1071.  
  1072. //**************************************************************************
  1073. //* Class: Win32_ADOCoreComponents
  1074. //* Derived from:
  1075. //**************************************************************************
  1076. [dynamic: ToInstance, provider("OffProv10")]
  1077. class Win32_ADOCoreComponents
  1078. {
  1079.     [key, read: ToInstance ToSubClass] string Description;
  1080.     [read: ToInstance ToSubClass] string Path;
  1081.     [read: ToInstance ToSubClass] string Version;
  1082. };
  1083.  
  1084. //**************************************************************************
  1085. //* Class: Win32_RDOCoreComponents
  1086. //* Derived from:
  1087. //**************************************************************************
  1088. [dynamic: ToInstance, provider("OffProv10")]
  1089. class Win32_RDOCoreComponents
  1090. {
  1091.     [key, read: ToInstance ToSubClass] string Description;
  1092.     [read: ToInstance ToSubClass] string Path;
  1093.     [read: ToInstance ToSubClass] string Version;
  1094. };
  1095.  
  1096.  
  1097. //**************************************************************************
  1098. //* Class: Win32_Excel10AlternateStartupFileLoc
  1099. //* Derived from: 
  1100. //**************************************************************************
  1101. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1102. class Win32_Excel10AlternateStartupFileLoc
  1103. {
  1104.     [read: ToInstance ToSubClass] string Path;
  1105. };
  1106.  
  1107.  
  1108. //**************************************************************************
  1109. //* Class: Win32_Excel10DefaultFileLoc
  1110. //* Derived from: 
  1111. //**************************************************************************
  1112. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1113. class Win32_Excel10DefaultFileLoc
  1114. {
  1115.     [read: ToInstance ToSubClass] string Path;
  1116. };
  1117.  
  1118. //**************************************************************************
  1119. //* Class: Win32_Excel10StartupFolder
  1120. //* Derived from: 
  1121. //**************************************************************************
  1122. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1123. class Win32_Excel10StartupFolder
  1124. {
  1125.     [read: ToInstance ToSubClass] string Path;
  1126. };
  1127.  
  1128. //**************************************************************************
  1129. //* Class: Win32_Access10AlternateStartupFileLoc
  1130. //* Derived from: 
  1131. //**************************************************************************
  1132. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1133. class Win32_Access10AlternateStartupFileLoc
  1134. {
  1135.     [read: ToInstance ToSubClass] string Path;
  1136. };
  1137.  
  1138.  
  1139. //**************************************************************************
  1140. //* Class: Win32_Access10DefaultFileLoc
  1141. //* Derived from: 
  1142. //**************************************************************************
  1143. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1144. class Win32_Access10DefaultFileLoc
  1145. {
  1146.     [read: ToInstance ToSubClass] string Path;
  1147. };
  1148.  
  1149. //**************************************************************************
  1150. //* Class: Win32_Access10StartupFolder
  1151. //* Derived from: 
  1152. //**************************************************************************
  1153. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1154. class Win32_Access10StartupFolder
  1155. {
  1156.     [read: ToInstance ToSubClass] string Path;
  1157. };
  1158.  
  1159. //**************************************************************************
  1160. //* Class: Win32_Access10JetComponents
  1161. //* Derived from:
  1162. //**************************************************************************
  1163. [dynamic: ToInstance, provider("OffProv10")]
  1164. class Win32_Access10JetComponents
  1165. {
  1166.     [key, read: ToInstance ToSubClass] string Description;
  1167.     [read: ToInstance ToSubClass] string Path;
  1168.     [read: ToInstance ToSubClass] string Version;
  1169. };
  1170.  
  1171. //**************************************************************************
  1172. //* Class: Win32_PowerPoint10SelectedTable
  1173. //* Derived from: 
  1174. //**************************************************************************
  1175. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1176. class Win32_PowerPoint10SelectedTable
  1177. {
  1178.     [read: ToInstance ToSubClass] uint32 Page;
  1179.     [read: ToInstance ToSubClass] uint32 Section;
  1180.     [read: ToInstance ToSubClass] uint32 Rows;
  1181.     [read: ToInstance ToSubClass] uint32 Columns;
  1182.     [read: ToInstance ToSubClass] boolean AllowPageBreaks;
  1183.     [read: ToInstance ToSubClass] string RowsAllowPageBreaks;
  1184.     [read: ToInstance ToSubClass] boolean AllowAutoFit;
  1185.     [read: ToInstance ToSubClass] string CellsAllowAutoFit;
  1186.     [read: ToInstance ToSubClass] uint32 NestingLevel;
  1187.     [read: ToInstance ToSubClass] uint32 Tables;
  1188.     [read: ToInstance ToSubClass] string PreferredWidthType;
  1189.     [read: ToInstance ToSubClass] real32 PreferredWidth;
  1190.     [read: ToInstance ToSubClass] real32 Spacing;
  1191.     [read: ToInstance ToSubClass] real32 TopMargin;
  1192.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1193.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1194.     [read: ToInstance ToSubClass] real32 RightMargin;
  1195.     [read: ToInstance ToSubClass] string RowAlignment;
  1196.     [read: ToInstance ToSubClass] string RowHeightRule;
  1197.     [read: ToInstance ToSubClass] real32 LeftIndent;
  1198.     [read: ToInstance ToSubClass] boolean Uniform;
  1199. };
  1200.  
  1201. //**************************************************************************
  1202. //* Class: Win32_PowerPoint10Table
  1203. //* Derived from: 
  1204. //**************************************************************************
  1205. [dynamic: ToInstance, provider("OffProv10")]
  1206. class Win32_PowerPoint10Table
  1207. {
  1208.     [key, read: ToInstance ToSubClass] uint32 Index;
  1209.     [read: ToInstance ToSubClass] uint32 Page;
  1210.     [read: ToInstance ToSubClass] uint32 Section;
  1211.     [read: ToInstance ToSubClass] uint32 Rows;
  1212.     [read: ToInstance ToSubClass] uint32 Columns;
  1213.     [read: ToInstance ToSubClass] boolean NestedTables;
  1214. };
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220. //**************************************************************************
  1221. //* Class: Win32_PowerPoint10Tables
  1222. //* Derived from: 
  1223. //**************************************************************************
  1224. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1225. class Win32_PowerPoint10Tables
  1226. {
  1227.     [read: ToInstance ToSubClass] uint32 TableCount;
  1228. };
  1229.  
  1230.  
  1231.  
  1232. //**************************************************************************
  1233. //* Class: Win32_PowerPoint10PageNumber
  1234. //* Derived from: 
  1235. //**************************************************************************
  1236. [dynamic: ToInstance, provider("OffProv10")]
  1237. class Win32_PowerPoint10PageNumber
  1238. {
  1239.     [key, read: ToInstance ToSubClass] uint32 Section;
  1240.     [read: ToInstance ToSubClass] uint32 PageNumbers;
  1241.     [read: ToInstance ToSubClass] string PageNumbersIn;
  1242.     [read: ToInstance ToSubClass] uint32 Start;
  1243.     [read: ToInstance ToSubClass] boolean Restart;
  1244.     [read: ToInstance ToSubClass] boolean ShowFirst;
  1245. };
  1246.  
  1247.  
  1248. //**************************************************************************
  1249. //* Class: Win32_PowerPoint10Hyperlinks
  1250. //* Derived from: 
  1251. //**************************************************************************
  1252. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1253. class Win32_PowerPoint10Hyperlinks
  1254. {
  1255.     [read: ToInstance ToSubClass] uint32 HyperlinkCount;
  1256. };
  1257.  
  1258. //**************************************************************************
  1259. //* Class: Win32_PowerPoint10Hyperlink
  1260. //* Derived from: 
  1261. //**************************************************************************
  1262. [dynamic: ToInstance, provider("OffProv10")]
  1263. class Win32_PowerPoint10Hyperlink
  1264. {
  1265.     [key, read: ToInstance ToSubClass] uint32 Index;
  1266.     [read: ToInstance ToSubClass] string Target;
  1267.     [read: ToInstance ToSubClass] string Address;
  1268.     [read: ToInstance ToSubClass] string TextToDisplay;
  1269.     [read: ToInstance ToSubClass] string Type;
  1270.     [read: ToInstance ToSubClass] string Subaddress;
  1271.     [read: ToInstance ToSubClass] string ScreenTip;
  1272.     [read: ToInstance ToSubClass] string Name;
  1273. };
  1274.  
  1275.  
  1276. //**************************************************************************
  1277. //* Class: Win32_PowerPoint10Fonts
  1278. //* Derived from: 
  1279. //**************************************************************************
  1280. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1281. class Win32_PowerPoint10Fonts
  1282. {
  1283.     [read: ToInstance ToSubClass] boolean EmbedTrueTypeFonts;
  1284.     [read: ToInstance ToSubClass] uint32 FontCount;
  1285. };
  1286.  
  1287. //**************************************************************************
  1288. //* Class: Win32_PowerPoint10Font
  1289. //* Derived from: 
  1290. //**************************************************************************
  1291. [dynamic: ToInstance, provider("OffProv10")]
  1292. class Win32_PowerPoint10Font
  1293. {
  1294.     [key, read: ToInstance ToSubClass] string Name;
  1295. };
  1296.  
  1297.  
  1298. //**************************************************************************
  1299. //* Class: Win32_PowerPoint10ComAddins
  1300. //* Derived from: 
  1301. //**************************************************************************
  1302. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1303. class Win32_PowerPoint10ComAddins
  1304. {
  1305.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1306. };
  1307.  
  1308. //**************************************************************************
  1309. //* Class: Win32_PowerPoint10ComAddin
  1310. //* Derived from: 
  1311. //**************************************************************************
  1312. [dynamic: ToInstance, provider("OffProv10")]
  1313. class Win32_PowerPoint10ComAddin
  1314. {
  1315.     [key, read: ToInstance ToSubClass] string Name;
  1316.     [read: ToInstance ToSubClass] string Installed;
  1317.     [read: ToInstance ToSubClass] string Creator;
  1318.     [read: ToInstance ToSubClass] string Guid;
  1319.     [read: ToInstance ToSubClass] string Path;
  1320. };
  1321.  
  1322.  
  1323. //**************************************************************************
  1324. //* Class: Win32_PowerPoint10AlternateStartupLoc
  1325. //* Derived from: 
  1326. //**************************************************************************
  1327. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1328. class Win32_PowerPoint10AlternateStartupLoc
  1329. {
  1330.     [read: ToInstance ToSubClass] string Path;
  1331. };
  1332.  
  1333.  
  1334. //**************************************************************************
  1335. //* Class: Win32_PowerPoint10DefaultFileLoc
  1336. //* Derived from: 
  1337. //**************************************************************************
  1338. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1339. class Win32_PowerPoint10DefaultFileLoc
  1340. {
  1341.     [read: ToInstance ToSubClass] string Path;
  1342. };
  1343.  
  1344. //**************************************************************************
  1345. //* Class: Win32_PowerPoint10StartupFolder
  1346. //* Derived from: 
  1347. //**************************************************************************
  1348. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1349. class Win32_PowerPoint10StartupFolder
  1350. {
  1351.     [read: ToInstance ToSubClass] string Path;
  1352. };
  1353.  
  1354. //**************************************************************************
  1355. //* Class: Win32_PowerPoint10PageSetup
  1356. //* Derived from: 
  1357. //**************************************************************************
  1358. [dynamic: ToInstance, provider("OffProv10")]
  1359. class Win32_PowerPoint10PageSetup
  1360. {
  1361.     [key, read: ToInstance ToSubClass] uint32 Section;
  1362.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  1363.     [read: ToInstance ToSubClass] real32 FooterDistance;
  1364.     [read: ToInstance ToSubClass] real32 TopMargin;
  1365.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1366.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1367.     [read: ToInstance ToSubClass] real32 RightMargin;
  1368.     [read: ToInstance ToSubClass] string PaperSize;
  1369.     [read: ToInstance ToSubClass] real32 PageHeight;
  1370.     [read: ToInstance ToSubClass] real32 PageWidth;
  1371.     [read: ToInstance ToSubClass] string Orientation;
  1372.     [read: ToInstance ToSubClass] string SectionStart;
  1373.     [read: ToInstance ToSubClass] string VerticalAlignment;
  1374.     [read: ToInstance ToSubClass] real32 CharsLine;
  1375.     [read: ToInstance ToSubClass] real32 LinesPage;
  1376.     [read: ToInstance ToSubClass] string Notables;
  1377. };
  1378.  
  1379. //**************************************************************************
  1380. //* Class: Win32_Publisher10ActiveDocument
  1381. //* Derived from: 
  1382. //**************************************************************************
  1383. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1384. class Win32_Publisher10ActiveDocument
  1385. {
  1386.     [read: ToInstance ToSubClass] string Name;
  1387.     [read: ToInstance ToSubClass] string Path;
  1388.     [read: ToInstance ToSubClass] real32 Size;
  1389.     [read: ToInstance ToSubClass] datetime CreateDate;
  1390.     [read: ToInstance ToSubClass] string Author;
  1391.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  1392.     [read: ToInstance ToSubClass] string LastAuthor;
  1393.     [read: ToInstance ToSubClass] string Template;
  1394.     [read: ToInstance ToSubClass] uint32 Chars;
  1395.     [read: ToInstance ToSubClass] uint32 CharsWithSpaces;
  1396.     [read: ToInstance ToSubClass] uint32 Words;
  1397.     [read: ToInstance ToSubClass] uint32 Lines;
  1398.     [read: ToInstance ToSubClass] uint32 Paragraphs;
  1399.     [read: ToInstance ToSubClass] uint32 Pages;
  1400.     [read: ToInstance ToSubClass] uint32 Sections;
  1401.     [read: ToInstance ToSubClass] string View;
  1402.     [read: ToInstance ToSubClass] uint32 ZoomPercentage;
  1403.     [read: ToInstance ToSubClass] boolean AllowFastSaves;
  1404.     [read: ToInstance ToSubClass] sint32 WindowPosLeft;
  1405.     [read: ToInstance ToSubClass] sint32 WindowPosTop;
  1406.     [read: ToInstance ToSubClass] string StoryTypes;
  1407. };
  1408.  
  1409. //**************************************************************************
  1410. //* Class: Win32_Publisher10ActiveDocumentNoTable
  1411. //* Derived from: 
  1412. //**************************************************************************
  1413. [dynamic: ToInstance, provider("OffProv10")]
  1414. class Win32_Publisher10ActiveDocumentNoTable
  1415. {
  1416.     [key, read: ToInstance ToSubClass] string Text;
  1417. };
  1418.  
  1419. //**************************************************************************
  1420. //* Class: Win32_Publisher10AlternateStartupFileLocation
  1421. //* Derived from: 
  1422. //**************************************************************************
  1423. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1424. class Win32_Publisher10AlternateStartupFileLocation
  1425. {
  1426.     [read: ToInstance ToSubClass] string Path;
  1427. };
  1428.  
  1429. //**************************************************************************
  1430. //* Class: Win32_Publisher10COMAddIns
  1431. //* Derived from: 
  1432. //**************************************************************************
  1433. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1434. class Win32_Publisher10COMAddIns
  1435. {
  1436.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1437. };
  1438.  
  1439. //**************************************************************************
  1440. //* Class: Win32_Publisher10COMAddIn
  1441. //* Derived from: 
  1442. //**************************************************************************
  1443. [dynamic: ToInstance, provider("OffProv10")]
  1444. class Win32_Publisher10COMAddIn
  1445. {
  1446.     [key, read: ToInstance ToSubClass] string Name;
  1447.     [read: ToInstance ToSubClass] string Installed;
  1448.     [read: ToInstance ToSubClass] string Creator;
  1449.     [read: ToInstance ToSubClass] string Guid;
  1450.     [read: ToInstance ToSubClass] string Path;
  1451. };
  1452.  
  1453. //**************************************************************************
  1454. //* Class: Win32_Publisher10DefaultFileLocation
  1455. //* Derived from: 
  1456. //**************************************************************************
  1457. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1458. class Win32_Publisher10DefaultFileLocation
  1459. {
  1460.     [read: ToInstance ToSubClass] string Path;
  1461. };
  1462.  
  1463. //**************************************************************************
  1464. //* Class: Win32_Publisher10Tables
  1465. //* Derived from: 
  1466. //**************************************************************************
  1467. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1468. class Win32_Publisher10Tables
  1469. {
  1470.     [read: ToInstance ToSubClass] uint32 TableCount;
  1471. };     
  1472.      
  1473. //**************************************************************************
  1474. //* Class: Win32_Publisher10SelectedTable
  1475. //* Derived from: 
  1476. //**************************************************************************
  1477. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1478. class Win32_Publisher10SelectedTable
  1479. {
  1480.     [read: ToInstance ToSubClass] uint32 Page;
  1481.     [read: ToInstance ToSubClass] uint32 Section;
  1482.     [read: ToInstance ToSubClass] uint32 Rows;
  1483.     [read: ToInstance ToSubClass] uint32 Columns;
  1484.     [read: ToInstance ToSubClass] boolean AllowPageBreaks;
  1485.     [read: ToInstance ToSubClass] string RowsAllowPageBreaks;
  1486.     [read: ToInstance ToSubClass] boolean AllowAutoFit;
  1487.     [read: ToInstance ToSubClass] string CellsAllowAutoFit;
  1488.     [read: ToInstance ToSubClass] uint32 NestingLevel;
  1489.     [read: ToInstance ToSubClass] uint32 Tables;
  1490.     [read: ToInstance ToSubClass] string PreferredWidthType;
  1491.     [read: ToInstance ToSubClass] real32 PreferredWidth;
  1492.     [read: ToInstance ToSubClass] real32 Spacing;
  1493.     [read: ToInstance ToSubClass] real32 TopMargin;
  1494.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1495.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1496.     [read: ToInstance ToSubClass] real32 RightMargin;
  1497.     [read: ToInstance ToSubClass] string RowAlignment;
  1498.     [read: ToInstance ToSubClass] string RowHeightRule;
  1499.     [read: ToInstance ToSubClass] real32 LeftIndent;
  1500.     [read: ToInstance ToSubClass] boolean Uniform;
  1501. };    
  1502.  
  1503.  
  1504. //**************************************************************************
  1505. //* Class: Win32_Publisher10Table
  1506. //* Derived from: 
  1507. //**************************************************************************
  1508. [dynamic: ToInstance, provider("OffProv10")]
  1509. class Win32_Publisher10Table
  1510. {
  1511.     [key, read: ToInstance ToSubClass] uint32 Index;
  1512.     [read: ToInstance ToSubClass] uint32 Page;
  1513.     [read: ToInstance ToSubClass] uint32 Section;
  1514.     [read: ToInstance ToSubClass] uint32 Rows;
  1515.     [read: ToInstance ToSubClass] uint32 Columns;
  1516.     [read: ToInstance ToSubClass] boolean NestedTables;
  1517. };
  1518.     
  1519.  
  1520. //**************************************************************************
  1521. //* Class: Win32_Publisher10Fonts
  1522. //* Derived from: 
  1523. //**************************************************************************
  1524. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1525. class Win32_Publisher10Fonts
  1526. {
  1527.     [read: ToInstance ToSubClass] boolean EmbedTrueTypeFonts;
  1528.     [read: ToInstance ToSubClass] uint32 FontCount;
  1529. };
  1530.  
  1531. //**************************************************************************
  1532. //* Class: Win32_Publisher10Font
  1533. //* Derived from: 
  1534. //**************************************************************************
  1535. [dynamic: ToInstance, provider("OffProv10")]
  1536. class Win32_Publisher10Font
  1537. {
  1538.     [key, read: ToInstance ToSubClass] string Name;
  1539. };
  1540.  
  1541.  
  1542. //**************************************************************************
  1543. //* Class: Win32_Publisher10Hyperlinks
  1544. //* Derived from: 
  1545. //**************************************************************************
  1546. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1547. class Win32_Publisher10Hyperlinks
  1548. {
  1549.     [read: ToInstance ToSubClass] uint32 HyperlinkCount;
  1550. };
  1551.  
  1552. //**************************************************************************
  1553. //* Class: Win32_Publisher10Hyperlink
  1554. //* Derived from: 
  1555. //**************************************************************************
  1556. [dynamic: ToInstance, provider("OffProv10")]
  1557. class Win32_Publisher10Hyperlink
  1558. {
  1559.     [key, read: ToInstance ToSubClass] uint32 Index;
  1560.     [read: ToInstance ToSubClass] string Target;
  1561.     [read: ToInstance ToSubClass] string Address;
  1562.     [read: ToInstance ToSubClass] string TextToDisplay;
  1563.     [read: ToInstance ToSubClass] string Type;
  1564.     [read: ToInstance ToSubClass] string Subaddress;
  1565.     [read: ToInstance ToSubClass] string ScreenTip;
  1566.     [read: ToInstance ToSubClass] string Name;
  1567. };
  1568.  
  1569. //**************************************************************************
  1570. //* Class: Win32_Publisher10MailMerge
  1571. //* Derived from: 
  1572. //**************************************************************************
  1573. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1574. class Win32_Publisher10MailMerge
  1575. {
  1576.     [read: ToInstance ToSubClass] string DocumentName;
  1577.     [read: ToInstance ToSubClass] string DocumentType;
  1578.     [read: ToInstance ToSubClass] string MergeTo;
  1579.     [read: ToInstance ToSubClass] string State;
  1580.     [read: ToInstance ToSubClass] boolean SuppressBlankLines;
  1581.     [read: ToInstance ToSubClass] boolean ViewFieldCodes;
  1582.     [read: ToInstance ToSubClass] uint32 FieldCount;
  1583.     [read: ToInstance ToSubClass] string FieldCodes;
  1584.     [read: ToInstance ToSubClass] string DataSourceName;
  1585.     [read: ToInstance ToSubClass] string DataSourceType;
  1586.     [read: ToInstance ToSubClass] string ActiveRecord;
  1587.     [read: ToInstance ToSubClass] string FieldNames;
  1588.     [read: ToInstance ToSubClass] string Notables;
  1589. };    
  1590.     
  1591. //**************************************************************************
  1592. //* Class: Win32_Publisher10PageNumber
  1593. //* Derived from: 
  1594. //**************************************************************************
  1595. [dynamic: ToInstance, provider("OffProv10")]
  1596. class Win32_Publisher10PageNumber
  1597. {
  1598.     [key, read: ToInstance ToSubClass] uint32 Section;
  1599.     [read: ToInstance ToSubClass] uint32 PageNumbers;
  1600.     [read: ToInstance ToSubClass] string PageNumbersIn;
  1601.     [read: ToInstance ToSubClass] uint32 Start;
  1602.     [read: ToInstance ToSubClass] boolean Restart;
  1603.     [read: ToInstance ToSubClass] boolean ShowFirst;
  1604. };    
  1605.     
  1606. //**************************************************************************
  1607. //* Class: Win32_Publisher10PageSetup
  1608. //* Derived from: 
  1609. //**************************************************************************
  1610. [dynamic: ToInstance, provider("OffProv10")]
  1611. class Win32_Publisher10PageSetup
  1612. {
  1613.     [key, read: ToInstance ToSubClass] uint32 Section;
  1614.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  1615.     [read: ToInstance ToSubClass] real32 FooterDistance;
  1616.     [read: ToInstance ToSubClass] real32 TopMargin;
  1617.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1618.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1619.     [read: ToInstance ToSubClass] real32 RightMargin;
  1620.     [read: ToInstance ToSubClass] string PaperSize;
  1621.     [read: ToInstance ToSubClass] real32 PageHeight;
  1622.     [read: ToInstance ToSubClass] real32 PageWidth;
  1623.     [read: ToInstance ToSubClass] string Orientation;
  1624.     [read: ToInstance ToSubClass] string SectionStart;
  1625.     [read: ToInstance ToSubClass] string VerticalAlignment;
  1626.     [read: ToInstance ToSubClass] real32 CharsLine;
  1627.     [read: ToInstance ToSubClass] real32 LinesPage;
  1628.     [read: ToInstance ToSubClass] string Notables;
  1629. };
  1630.  
  1631.     
  1632. //    Win32_Publisher10PageNumbers
  1633.     
  1634.  
  1635.     //**************************************************************************
  1636. //* Win32_Publisher10Styles
  1637. //* Derived from: 
  1638. //**************************************************************************
  1639. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1640. class Win32_Publisher10Styles
  1641. {
  1642.     [read: ToInstance ToSubClass] boolean AutoFormatAsYouTypeDefineStyles;
  1643.     [read: ToInstance ToSubClass] boolean AutoFormatPreserveStyles;
  1644.     [read: ToInstance ToSubClass] uint32 ParagraphStyleCount;
  1645.     [read: ToInstance ToSubClass] uint32 CharacterStyleCount;
  1646. };
  1647.  
  1648. //**************************************************************************
  1649. //* Class: Win32_Publisher10ParagraphStyle
  1650. //* Derived from: 
  1651. //**************************************************************************
  1652. [dynamic: ToInstance, provider("OffProv10")]
  1653. class Win32_Publisher10ParagraphStyle
  1654. {
  1655.     [key, read: ToInstance ToSubClass] string Name;
  1656.     [read: ToInstance ToSubClass] string Description;
  1657.     [read: ToInstance ToSubClass] string BaseStyle;
  1658.     [read: ToInstance ToSubClass] string NextStyle;
  1659.     [read: ToInstance ToSubClass] boolean BuiltIn;
  1660.     [read: ToInstance ToSubClass] boolean NoProofing;
  1661.     [read: ToInstance ToSubClass] boolean AutomaticallyUpdate;
  1662. };
  1663.  
  1664. //**************************************************************************
  1665. //* Class: Win32_Publisher10CharacterStyle
  1666. //* Derived from: 
  1667. //**************************************************************************
  1668. [dynamic: ToInstance, provider("OffProv10")]
  1669. class Win32_Publisher10CharacterStyle
  1670. {
  1671.     [key, read: ToInstance ToSubClass] string Name;
  1672.     [read: ToInstance ToSubClass] string Description;
  1673.     [read: ToInstance ToSubClass] string BaseStyle;
  1674.     [read: ToInstance ToSubClass] boolean BuiltIn;
  1675. };
  1676.     
  1677. //**************************************************************************
  1678. //* Class: Win32_Publisher10StartupFolder
  1679. //* Derived from: 
  1680. //**************************************************************************
  1681. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1682. class Win32_Publisher10StartupFolder
  1683. {
  1684.     [read: ToInstance ToSubClass] string Path;
  1685. };
  1686.     
  1687.     
  1688. //**************************************************************************
  1689. //* Class: Win32_Publisher10Sections
  1690. //* Derived from: 
  1691. //**************************************************************************
  1692. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1693. class Win32_Publisher10Sections
  1694. {
  1695.     [read: ToInstance ToSubClass] uint32 SectionCount;
  1696. };    
  1697.  
  1698. //**************************************************************************
  1699. //* Class: Win32_OutlookAlternateStartupFile
  1700. //* Derived from: 
  1701. //**************************************************************************
  1702. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1703. class Win32_OutlookAlternateStartupFile
  1704. {
  1705.     [read: ToInstance ToSubClass] string Path;
  1706. };
  1707.  
  1708.  
  1709. //**************************************************************************
  1710. //* Class:Win32_OutlookStartupFolder
  1711. //* Derived from: 
  1712. //**************************************************************************
  1713. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1714. class Win32_OutlookStartupFolder
  1715. {
  1716.     [read: ToInstance ToSubClass] string Path;
  1717. };
  1718.  
  1719. //**************************************************************************
  1720. //* Class: Win32_OutlookDefaultFileLocation
  1721. //* Derived from: 
  1722. //**************************************************************************
  1723. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1724. class Win32_OutlookDefaultFileLocation
  1725. {
  1726.     [read: ToInstance ToSubClass] string Path;
  1727. };
  1728.  
  1729.  
  1730.  
  1731.  
  1732.  
  1733.  
  1734. //**************************************************************************
  1735. //* Class: Win32_OutlookComAddins
  1736. //* Derived from: 
  1737. //**************************************************************************
  1738. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1739. class Win32_OutlookComAddins
  1740. {
  1741.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1742. };
  1743.  
  1744. //**************************************************************************
  1745. //* Class: Win32_OutlookComAddin
  1746. //* Derived from: 
  1747. //**************************************************************************
  1748. [dynamic: ToInstance, provider("OffProv10")]
  1749. class Win32_OutlookComAddin
  1750. {
  1751.     [key, read: ToInstance ToSubClass] string Name;
  1752.     [read: ToInstance ToSubClass] string Installed;
  1753.     [read: ToInstance ToSubClass] string Creator;
  1754.     [read: ToInstance ToSubClass] string Guid;
  1755.     [read: ToInstance ToSubClass] string Path;
  1756. };
  1757.  
  1758. //**************************************************************************
  1759. //* Class: Win32_OutlookComAddins
  1760. //* Derived from: 
  1761. //**************************************************************************
  1762. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1763. class Win32_OutlookComAddins
  1764. {
  1765.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1766. };
  1767.  
  1768. //**************************************************************************
  1769. //* Class: Win32_OutlookComAddin
  1770. //* Derived from: 
  1771. //**************************************************************************
  1772. [dynamic: ToInstance, provider("OffProv10")]
  1773. class Win32_OutlookComAddin
  1774. {
  1775.     [key, read: ToInstance ToSubClass] string Name;
  1776.     [read: ToInstance ToSubClass] string Installed;
  1777.     [read: ToInstance ToSubClass] string Creator;
  1778.     [read: ToInstance ToSubClass] string Guid;
  1779.     [read: ToInstance ToSubClass] string Path;
  1780. };
  1781.  
  1782.  
  1783. //**************************************************************************
  1784. //* Class: Win32_Access10ComAddins
  1785. //* Derived from: 
  1786. //**************************************************************************
  1787. [dynamic: ToInstance, provider("OffProv10"), Singleton: DisableOverride ToInstance ToSubClass]
  1788. class Win32_Access10ComAddins
  1789. {
  1790.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1791. };
  1792.  
  1793. //**************************************************************************
  1794. //* Class: Win32_Access10ComAddin
  1795. //* Derived from: 
  1796. //**************************************************************************
  1797. [dynamic: ToInstance, provider("OffProv10")]
  1798. class Win32_Access10ComAddin
  1799. {
  1800.     [key, read: ToInstance ToSubClass] string Name;
  1801.     [read: ToInstance ToSubClass] string Installed;
  1802.     [read: ToInstance ToSubClass] string Creator;
  1803.     [read: ToInstance ToSubClass] string Guid;
  1804.     [read: ToInstance ToSubClass] string Path;
  1805. };
  1806.  
  1807. //* EOF MSIOff10.mof
  1808.